home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / aned21.zip / AE.DOC < prev    next >
Text File  |  1993-12-03  |  7KB  |  174 lines

  1.  
  2.                             ┌───────────────────┐
  3.                             │ An-Editor  v. 2.1 │
  4.                             └───────────────────┘
  5.  
  6.  ┌────────────────────────────────────────────────────────────────────────────┐
  7.  │                                                                            │
  8.  │    -  This is a simple editor released in the public domain.               │
  9.  │                                                                            │
  10.  │    -  It produces ASCII files.   ( control characters allowed )            │
  11.  │                                                                            │
  12.  │    -  Only files which are 80 characters wide are currently supported.     │
  13.  │                                                                            │
  14.  │    -  (* written in Turbo Pascal with assembly language subroutines for    │
  15.  │          fast screen updates *)                                            │
  16.  │                                                                            │
  17.  └────────────────────────────────────────────────────────────────────────────┘
  18.  
  19.  
  20.  
  21.          I have included the following files on this diskette :
  22.  
  23.  
  24.       ┌─────────────────────────────────────────────────────────────┐
  25.       │                                                             │
  26.       │  - AE.COM         ( the executable version of An-Editor )   │
  27.       │                                                             │
  28.       │  - AE.DOC         ( this documentation file             )   │
  29.       │                                                             │
  30.       └─────────────────────────────────────────────────────────────┘
  31.  
  32.  
  33.          Hardware requirements :
  34.          ─────────────────────
  35.  
  36.                - IBM PC or compatible, 320 K RAM.
  37.                - MS/PC-DOS 2.0 or greater.
  38.                - One disk drive.
  39.  
  40.  
  41.          You should format a new diskette with the format/s command
  42.          and copy these three files on it. There will be enough room
  43.          on the diskette to hold your documents. However, if you want
  44.          An-Editor to load and save from/to another drive, simply
  45.          enter the new drive or directory following "AE" on the DOS
  46.          command line.   ( examples:  AE B: ,  AE B:\MYSUBD )
  47.  
  48.          Also, you can specify the name of an existing file on the
  49.          command line. The file will then be loaded at start-up.
  50.  
  51.  
  52.          Editing commands :
  53.          ────────────────
  54.  
  55.          Note : When editing a file, you can press F1 to display a summary
  56.                 of the editing commands.
  57.  
  58.          An-Editor implements the following command set :
  59.  
  60.  
  61.          - left arrow              - right arrow
  62.          - up arrow                - down arrow
  63.  
  64.          - Ins   ( toggle between insert and overwrite modes )
  65.          - Del   ( delete the character at the cursor position )
  66.          - Backspace  ( delete character before cursor and move it one
  67.                         space to the left )
  68.  
  69.          - Ctrl-T     ( move cursor to top of screen )
  70.          - Ctrl-B     ( move cursor to bottom of screen )
  71.  
  72.          - Ctrl-W     ( scroll up one line towards beginning of the file )
  73.          - Ctrl-Z     ( scroll down one line towards the end of the file )
  74.  
  75.          - PgUp       ( move through file one screen up )
  76.          - PgDn       ( move through file one screen down )
  77.  
  78.          - Ctrl-PgUp    ( move cursor to the beginning of the file )
  79.          - Ctrl-PgDn    ( move cursor to the end of the file       )
  80.  
  81.          - home         ( move cursor to the beginning of the line )
  82.          - end          ( move cursor to the end of the line       )
  83.  
  84.          - Tab          ( move cursor right to the next tab position )
  85.          - Shift-tab    ( move cursor left to the next tab position  )
  86.  
  87.          - Ctrl-L       ( delete the line at the cursor position )
  88.          - Ctrl-N       ( insert a line at the cursor position )
  89.  
  90.          - Ctrl-P       ( instruct An-Editor to treat the following character
  91.                           as a literal : use this to enter ASCII 1-31 )
  92.  
  93.          - Ctrl-Y       ( toggle drawing mode on/off. Use arrows to draw
  94.                           boxes. Hit Ctrl-Y again to return to edit mode )
  95.  
  96.          - Return       ( go back to the beginning of the following line )
  97.  
  98.          - F5           ( hide / unhide cursor )
  99.          - F9           ( toggle clock display on/off )
  100.  
  101.  
  102.           Printing :
  103.           ────────
  104.  
  105.            - Only parallel printers are supported.  ( [PRN]/lpt1: ).
  106.  
  107.              WARNING : An attempt to use the "Print work" function with
  108.                        a printer attached to a port other than lpt1: can
  109.                        cause the computer to lock up !!!
  110.  
  111.            - If you are using a printer which is not IBM ProPrinter compa-
  112.              tible, you should create a file called "PRINTER.DEF" containing
  113.              the ASCII codes to switch the Near Letter Quality mode (NLQ)
  114.              on and off.  This file will contain three lines.
  115.                        Write the name of your printer on the FIRST line
  116.              of the file.  The SECOND line should contains the ascii codes
  117.              to switch your printer to NLQ mode.  On the THIRD line, write
  118.              the codes to switch back to normal (draft) mode. Do not forget
  119.              to put a blank space between the codes.
  120.                        Here is an example of a printer definition file :
  121. < beginning of file >
  122. Panasonic KX-P1077
  123. 27 55 66
  124. 27 32
  125. < end of file >
  126.  
  127.              Note that if An-Editor does not find this file in the same
  128.              directory as "AE.COM", only the IBM ProPrinter option will
  129.              be available at printing time.
  130.  
  131.              Also, you can specify a different directory for "PRINTER.DEF"
  132.              by defining an environment variable "AE_DIR" specifying the
  133.              directory where An-Editor should find it. For example, if you
  134.              want An-Editor to look for "PRINTER.DEF" in a directory named
  135.              "c:\text_ed\easy_ed" you would put the statement
  136.  
  137.                     SET AE_DIR = c:\text_ed\easy_ed
  138.  
  139.              in your AUTOEXEC.BAT file.
  140.  
  141.                                  When you choose the print option you
  142.              will be prompted for the top and bottom margins and also the
  143.              page length. For normal 8 1/2 x 11 paper, enter 6 for the
  144.              top and bottom margins, and 66 for the page length. These
  145.              values are default. If they suit your needs,  just press
  146.              < RETURN >.
  147.  
  148.  
  149.          Limitations :
  150.          ───────────
  151.  
  152.          - Be aware of the fact that An-Editor supports files with lines
  153.          of 80 characters maximum. Therefore, if you try to load a file
  154.          that has lines longer than 80 characters, they will be truncated.
  155.  
  156.          - The maximum number of lines of the file is 2000.
  157.  
  158.  
  159.          Feel free to send me comments, good or bad.
  160.  
  161.                    ────────────────────────────────────────────────
  162.  
  163.  
  164.          Guy Lachance
  165.  
  166.          215-C Mulberry,
  167.          El Paso, TX 79932.
  168.         ┌───────────────────────────────────┐
  169.         │ E-MAIL: lachance@cs.ep.utexas.edu │
  170.         └───────────────────────────────────┘
  171.          Compuserve : [71460,3407].
  172.  
  173.          ( 11/93.)
  174.